Don't hardcode mapping of VK_DECIMAL to GDK_KP_Decimal. Instead, let
authorTor Lillqvist <tml@iki.fi>
Sat, 7 Aug 2004 23:35:41 +0000 (23:35 +0000)
committerTor Lillqvist <tml@src.gnome.org>
Sat, 7 Aug 2004 23:35:41 +0000 (23:35 +0000)
2004-08-07  Tor Lillqvist  <tml@iki.fi>

* gdk/win32/gdkkeys-win32.c (update_keymap): Don't hardcode
mapping of VK_DECIMAL to GDK_KP_Decimal. Instead, let ToAsciiEx()
map it to what's printed on the keypad decimal key for the current
input locale (keyboard layout). (#149404)

ChangeLog
ChangeLog.pre-2-10
ChangeLog.pre-2-6
ChangeLog.pre-2-8
gdk/win32/gdkkeys-win32.c

index 729529f3f92ff9d30482b481848f6c29a0d53bae..187a01b7038d362b77351c3a646cfac88ad685bf 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2004-08-07  Tor Lillqvist  <tml@iki.fi>
+
+       * gdk/win32/gdkkeys-win32.c (update_keymap): Don't hardcode
+       mapping of VK_DECIMAL to GDK_KP_Decimal. Instead, let ToAsciiEx()
+       map it to what's printed on the keypad decimal key for the current
+       input locale (keyboard layout). (#149404)
+
 Sat Aug  7 18:19:03 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
index 729529f3f92ff9d30482b481848f6c29a0d53bae..187a01b7038d362b77351c3a646cfac88ad685bf 100644 (file)
@@ -1,3 +1,10 @@
+2004-08-07  Tor Lillqvist  <tml@iki.fi>
+
+       * gdk/win32/gdkkeys-win32.c (update_keymap): Don't hardcode
+       mapping of VK_DECIMAL to GDK_KP_Decimal. Instead, let ToAsciiEx()
+       map it to what's printed on the keypad decimal key for the current
+       input locale (keyboard layout). (#149404)
+
 Sat Aug  7 18:19:03 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
index 729529f3f92ff9d30482b481848f6c29a0d53bae..187a01b7038d362b77351c3a646cfac88ad685bf 100644 (file)
@@ -1,3 +1,10 @@
+2004-08-07  Tor Lillqvist  <tml@iki.fi>
+
+       * gdk/win32/gdkkeys-win32.c (update_keymap): Don't hardcode
+       mapping of VK_DECIMAL to GDK_KP_Decimal. Instead, let ToAsciiEx()
+       map it to what's printed on the keypad decimal key for the current
+       input locale (keyboard layout). (#149404)
+
 Sat Aug  7 18:19:03 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
index 729529f3f92ff9d30482b481848f6c29a0d53bae..187a01b7038d362b77351c3a646cfac88ad685bf 100644 (file)
@@ -1,3 +1,10 @@
+2004-08-07  Tor Lillqvist  <tml@iki.fi>
+
+       * gdk/win32/gdkkeys-win32.c (update_keymap): Don't hardcode
+       mapping of VK_DECIMAL to GDK_KP_Decimal. Instead, let ToAsciiEx()
+       map it to what's printed on the keypad decimal key for the current
+       input locale (keyboard layout). (#149404)
+
 Sat Aug  7 18:19:03 2004  Matthias Clasen  <maclas@gmx.de>
 
        * gtk/gtkfilechooserdefault.c (save_folder_combo_create): 
index 9473a36acc54e1bc9e3885e2b491c21d1b320891..a19f147d661e9886e504bde4cb9a07e8d28dc500 100644 (file)
@@ -203,8 +203,6 @@ update_keymap (void)
                  *ksymp = GDK_KP_Separator; break;
                case VK_SUBTRACT:
                  *ksymp = GDK_KP_Subtract; break;
-               case VK_DECIMAL:
-                 *ksymp = GDK_KP_Decimal; break;
                case VK_DIVIDE:
                  *ksymp = GDK_KP_Divide; break;
                case VK_F1: